home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / Includes_and_Autodocs_3.5 / include / clib / radiobutton_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-10-30  |  994 b   |  43 lines

  1. #ifndef CLIB_RADIOBUTTON_PROTOS_H
  2. #define CLIB_RADIOBUTTON_PROTOS_H
  3. /*
  4. **    $VER: radiobutton_protos.h 44.1 (19.10.1999)
  5. **    Includes Release 44.1
  6. **
  7. **    C prototypes. For use with 32 bit integers only.
  8. **
  9. **    (C) Copyright 1987-1999 Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. #ifndef EXEC_TYPES_H
  14. #include <exec/types.h>
  15. #endif
  16.  
  17. #ifndef INTUITION_CLASSES_H
  18. #include <intuition/classes.h>
  19. #endif
  20.  
  21. #ifndef UTILITY_TAGITEM_H
  22. #include <utility/tagitem.h>
  23. #endif
  24.  
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28.  
  29. Class * RADIOBUTTON_GetClass(VOID);
  30. struct Node * AllocRadioButtonNode(UWORD, Tag, ...);
  31. struct Node * AllocRadioButtonNodeA(UWORD, struct TagItem *);
  32. VOID FreeRadioButtonNode(struct Node *);
  33. VOID SetRadioButtonNodeAttrs(struct Node *, Tag, ...);
  34. VOID SetRadioButtonNodeAttrsA(struct Node *, struct TagItem *);
  35. VOID GetRadioButtonNodeAttrs(struct Node *, Tag, ...);
  36. VOID GetRadioButtonNodeAttrsA(struct Node *, struct TagItem *);
  37.  
  38. #ifdef __cplusplus
  39. }
  40. #endif
  41.  
  42. #endif /* CLIB_RADIOBUTTON_PROTOS_H */
  43.